home *** CD-ROM | disk | FTP | other *** search
/ Club Amiga de Montreal - CAM / CAM_CD_1.iso / files / 592b.lha / TermII / English / XCMD Examples / XCMD.h < prev    next >
Encoding:
C/C++ Source or Header  |  1991-12-22  |  469 b   |  30 lines

  1. /*
  2. *
  3. *       XCMD.h
  4. *
  5. *
  6. */
  7. #ifndef EXEC_TYPES_H
  8. #include <exec/types.h>
  9. #endif
  10. #ifndef EXEC_PORTS_H
  11. #include <exec/ports.h>
  12. #endif
  13. #ifndef DOS_DOS_H
  14. #include <dos/dos.h>
  15. #endif
  16.  
  17. struct XCMD
  18.   {
  19.   struct Message xcmd_Message;
  20.   long           xcmd_TermCmd;
  21.   struct Screen *xcmd_TermScreen;
  22.   BPTR           xcmd_TermDir;
  23.   char          *xcmd_Command;
  24.   void          *xcmd_Args[16];
  25.   BOOL           xcmd_TermError;
  26.   };
  27.  
  28. #define XCMD_START   1
  29. #define XCMD_STOP    2
  30.